home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue62 / Construc / UC62.DPR < prev    next >
Encoding:
Text File  |  2000-09-06  |  184 b   |  13 lines

  1. program UC62;
  2. uses
  3.   Forms,
  4.   Unit62 in 'Unit62.pas' {Form1};
  5.  
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.